메인 콘텐츠로 건너뛰기
GET
/
license
/
metric
Get license metrics
curl --request GET \
  --url https://your_a2_service/license/metric \
  --header 'Authorization: Bearer <token>'
{
  "features": {
    "analytic": [
      "advertiser"
    ],
    "campaign": [
      "impression"
    ],
    "creative": [
      "display"
    ],
    "media_library": [
      "local"
    ],
    "name": "<string>",
    "notification": [
      "adm"
    ]
  },
  "info": {
    "customer_id": "<string>",
    "expiry_date": "<string>",
    "license_type": "<string>"
  },
  "limit": {},
  "quota": {},
  "used": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.aiderx.io/llms.txt

Use this file to discover all available pages before exploring further.

인증

Authorization
string
header
필수

The access token received from the authorization server in the OAuth 2.0 flow.

응답

Successful Response

라이센스 리소스 상태

features
FeatureTierSchema · object
필수

라이센스 기능 스키마

info
LicenseInfoSchema · object
필수

라이센스 정보

limit
Limit · object
필수

리소스 유형별 제한값

예시:
{ "campaign.analystics.days": 30 }
quota
Quota · object
필수

리소스 유형별 할당량

예시:
{
"api.monthly_requests": 1000000,
"placement.count": 10
}
used
Used · object
필수

리소스 유형별 사용량

예시:
{
"api.monthly_requests": 100,
"placement.count": 1
}